home *** CD-ROM | disk | FTP | other *** search
- ;
- ; PFS:WRITE Pop-up Menu Configuration
- ;
- Comment ("Configured for PFS:WRITE")
-
- ;
- ; Parameters
- ;
- Sensitivity (5, 8) ; (Xinc, Yinc)
- Hysteresis (4, 3) ; (AutoX, AutoY)
- ReverseVideo (Yes) ; Menu is displayed in reverse video
- FixedMenu (No) ; Menu is floating (centered on cursor)
- EnableBeep (Yes) ; Allows menu switching rather than beep
-
- ;
- ; Cursor Definitions
- ;
- ArrowKeys: Cursor
- (
- Left ([Left])
- Right ([Right])
- Up ([Up])
- Down ([Down])
- )
-
- ;
- ; Button Definitions
- ;
- LBE: Button (Menu(Edit)) ; Left button, Edit Menu
- LBM: Button (Menu(Main)) ; Left button, Main Menu
- LBT: Button (Menu(Motion)) ; Left button, Travel/Motion Menu
- LBP: Button (Menu(Enhance)) ; Left button, Print Enhancements
-
- MB: Button (Keys([F10])) ; Middle button: Continue
-
- RB: Button (Keys([Esc])) ; Right button: Cancel
-
-
- ;
- ; Menu Definitions
- ;
- Main: Menu
- (
- Title ("Main")
- Item ("WRITE Main Menu", Keys([Esc]))
- Item ("Edit Pop-up", Menu(Edit), Button(LBE))
- Item ("Motion Pop-up", Menu(Motion), Button(LBT))
- Item ("Enhance Pop-up", Menu(Enhance), Button(LBP))
- Item ("Help", Keys([F1]))
- Item ("Set/Clear Tabs", Keys([F2]))
- )
-
- Edit: Menu
- (
- Title ("Edit")
- Item ("Label Block", Keys([F5]))
- Item ("Delete Block", Keys([Del]))
- Item ("Duplicate Block", Keys([F6]))
- Item ("Erase Line", Keys([s-F6]))
- Item ("Erase Word", Keys([s-F5]))
- Item ("Append", Keys([F9]))
- Item ("Format", Keys([F8]))
- Item ("Search", Keys([F7]))
- Item ("Insert On/Off", Keys([Ins]))
- Item ("Main Pop-up", Menu(Main), Button(LBM))
- )
-
- Motion: Menu
- (
- Title ("Motion")
- Item ("Top of Document", Keys([Home]))
- Item ("End of Document", Keys([End]))
- Item ("Screen Up", Keys([PgUp]))
- Item ("Screen Down", Keys([PgDn]))
- Item ("Previous Word", Keys([F3]))
- Item ("Next Word", Keys([F4]))
- Item ("Beginning of Line", Keys([s-F3]))
- Item ("End of Line", Keys([s-F4]))
- Item ("Next Tab Stop", Keys([Tab]))
- Item ("Previous Tab Stop", Keys([s-Tab]))
- Item ("Main Pop-up", Menu(Main), Button(LBM))
- )
-
- Enhance: Menu
- (
- Title ("Enhance")
- Item ("Boldface", Keys([s-F8]))
- Item ("Underline", Keys([s-F7]))
- Item ("Main Pop-up", Menu(Main), Button(LBM))
- )
- ;
- ; Mouse Definition
- ;
- Mouse
- (
- Left (LBM) ; Left Button: Main menu
- Middle (MB) ; Middle Button: Continue
- LeftRight(MB) ; Left Right Chord: Continue
- Right (RB) ; Right Button: Cancel
- Cursor (ArrowKeys)
- )